From: Chong Yidong Date: Sun, 6 Dec 2009 15:34:59 +0000 (+0000) Subject: * progmodes/js.el (js--js-not): Add null to the list of values. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~9044 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=488cee9ce63fe61af6b615fae3551692ad8f55f9;p=emacs.git * progmodes/js.el (js--js-not): Add null to the list of values. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6d3372c94da..ee911307513 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-12-06 Daniel Colascione + + * progmodes/js.el (js--js-not): Add null to the list of values. + 2009-12-06 Chong Yidong * ansi-color.el (ansi-color-for-comint-mode): Add :version diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index 96b49499f4f..cba315ac2d4 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -2603,7 +2603,7 @@ with `js--js-encode-value'." js-js-timeout)))) (defsubst js--js-not (value) - (memq value '(nil false undefined))) + (memq value '(nil null false undefined))) (defsubst js--js-true (value) (not (js--js-not value)))